home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher1.12 / misc / Radio / radio / conf.h next >
Encoding:
C/C++ Source or Header  |  1991-08-14  |  1.3 KB  |  64 lines

  1. /*
  2.  * These are all of user definable parameters
  3.  */
  4.  
  5. /*
  6.  * Make sure that your help file is in defined as $(LIBDIR)/gopher.hlp
  7.  * where LIBDIR comes from the Makefile
  8.  */
  9.  
  10. #define GOPHERHELP       "gopher.hlp"
  11. #define DEFAULT_HOST     "gopher.micro.umn.edu"
  12. #define GOPHER_PORT      150
  13.  
  14.  
  15. /*
  16. ** Uncomment out the following if you plan on allowing anonymous logins
  17. ** to a gopher account.
  18. */
  19.  
  20. /*#define PARANOID /**/
  21.  
  22. /*
  23.  * These are implementation specific #defines
  24.  */
  25.  
  26. #ifdef IS_A_SUN
  27. #define PAGER_COMMAND "/usr/ucb/more"
  28. #define TELNET_COMMAND "/usr/ucb/telnet"
  29. #define PRINTER_COMMAND "/usr/ucb/lpr"
  30. #define USE_DIRENT
  31. #endif
  32.  
  33. #ifdef IS_A_HPUX
  34. #define SYSVCURSES
  35. #define PAGER_COMMAND "/usr/bin/more"
  36. #define TELNET_COMMAND "/usr/bin/telnet"
  37. #define PRINTER_COMMAND "/usr/bin/lpr"
  38. #define USE_DIRENT
  39. #endif
  40.  
  41. #ifdef IS_AUX_BOX
  42. #define SYSVCURSES
  43. #define PAGER_COMMAND "/bin/more"
  44. #define TELNET_COMMAND "/usr/bin/telnet"
  45. #define PRINTER_COMMAND "/usr/ucb/lpr"
  46. #endif
  47.  
  48. #ifdef IS_A_RS6000
  49. #define SYSVCURSES
  50. #define PAGER_COMMAND "/usr/ucb/more"
  51. #define TELNET_COMMAND "/usr/ucb/telnet"
  52. #define PRINTER_COMMAND "/bin/lpr"
  53. #endif
  54.  
  55. #ifdef IS_BSD
  56. #define PAGER_COMMAND "/usr/ucb/more"
  57. #define TELNET_COMMAND "/usr/ucb/telnet"
  58. #define PRINTER_COMMAND "/usr/ucb/lpr"
  59. #define tolower
  60. #define NO_VPRINTF
  61. #endif
  62.  
  63.  
  64.